Search
CollectionBase(T, E).CopyTo Method
See Also
 






Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void CopyTo (
    T[] array,
    int arrayIndex
)

Visual Basic  Copy Code

Public Sub CopyTo( _
    array() As T, _
    arrayIndex As Integer _
)

 Parameters

array

The one-dimensional Array that is the destination of the elements copied from the collection. The Array must have zero-based indexing.

arrayIndex

The zero-based index at which the copying begins.

 See Also